1) Generate the key
openssl genrsa -des3 -out domainname.co.uk.key 1024
2) Generate the certificate
openssl req -new -key domainname.co.uk.key -x509 -out domainname.co.uk.crt
3) ensure the httpd.conf points to the key and crt files
SSLCertificateFile /path/to/ssl.crt/www.domainname.co.uk.crt
SSLCertificateKeyFile /path/to/ssl.key/www.domainname.co.uk.key
4) build modssl with the above key and crt files
5) start the ssl server and hope...
/usr/local/apache/bin/apachectl startssl
christo